Skip to content

Conversation

@supperthomas
Copy link
Owner

No description provided.

Copilot AI review requested due to automatic review settings November 24, 2025 12:50
@supperthomas supperthomas merged commit 9d7f743 into master Nov 24, 2025
3 of 4 checks passed
@supperthomas supperthomas deleted the supperthomas-patch-2 branch November 24, 2025 12:51
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds documentation for removing Git tags, both from remote repositories and locally. The addition provides useful commands for bulk tag deletion operations.

  • Adds a new section titled "GIT 如何删除remote中所有tag" (How to delete all tags in remote)
  • Provides commands for deleting all remote tags using git show-ref with awk and xargs
  • Includes a command for deleting all local tags using git tag -l with xargs

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

[Git及GitHub教程](https://www.githubs.cn/post/git-tutorial)


### GIT 如何删除remote中所有tag
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The section heading has an inconsistency in formatting. Looking at the document structure, this new section should be placed before "## 参考教程" (line 287) rather than after it. The "参考教程" section appears to be a closing reference section, and new content sections should come before it.

Copilot uses AI. Check for mistakes.


```
git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The git command appears to reference a specific remote name 'mist-modules' which seems overly specific for a general documentation guide. This should either use a generic placeholder like 'origin' or include an explanation that users should replace 'mist-modules' with their actual remote name.

Suggested change
git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules
git show-ref --tag | awk '{print ":" $2}' | xargs git push origin

Copilot uses AI. Check for mistakes.

```
git show-ref --tag | awk '{print ":" $2}' | xargs git push mist-modules
```
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description "删除本地所有tag" (Delete all local tags) is placed after the code block for deleting remote tags, which creates confusion. It should appear before its corresponding code block on line 299. The logical flow should be: description first, then the code block that implements that description.

Suggested change
```

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants